home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Magazine / Morphos / GCC / ppc-amigaos / include / clib / realtime_protos.h < prev    next >
C/C++ Source or Header  |  2000-02-28  |  1KB  |  45 lines

  1. #ifndef  CLIB_REALTIME_PROTOS_H
  2. #define  CLIB_REALTIME_PROTOS_H
  3.  
  4. /*
  5. **    $VER: realtime_protos.h 40.1 (16.3.93)
  6. **    Includes Release 40.15
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17. #ifndef  LIBRARIES_REALTIME_H
  18. #include <libraries/realtime.h>
  19. #endif
  20. #ifndef  UTILITY_TAGITEM_H
  21. #include <utility/tagitem.h>
  22. #endif
  23. /*--- functions in V37 or higher (Release 2.04) ---*/
  24.  
  25. /* Locks */
  26.  
  27. APTR LockRealTime( unsigned long lockType );
  28. void UnlockRealTime( APTR lock );
  29.  
  30. /* Conductor */
  31.  
  32. struct Player *CreatePlayerA( struct TagItem *tagList );
  33. struct Player *CreatePlayer( Tag tag1, ... );
  34. void DeletePlayer( struct Player *player );
  35. BOOL SetPlayerAttrsA( struct Player *player, struct TagItem *tagList );
  36. BOOL SetPlayerAttrs( struct Player *player, Tag tag1, ... );
  37. LONG SetConductorState( struct Player *player, unsigned long state,
  38.     long time );
  39. BOOL ExternalSync( struct Player *player, long minTime, long maxTime );
  40. struct Conductor *NextConductor( struct Conductor *previousConductor );
  41. struct Conductor *FindConductor( STRPTR name );
  42. ULONG GetPlayerAttrsA( struct Player *player, struct TagItem *tagList );
  43. ULONG GetPlayerAttrs( struct Player *player, Tag tag1, ... );
  44. #endif     /* CLIB_REALTIME_PROTOS_H */
  45.